home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2018 January / PCgo 01-2018 CD-ROM Germany.iso / nw.pak / Unnamed File 005217.txt < prev    next >
Encoding:
Text File  |  2015-07-29  |  3.8 KB  |  135 lines

  1. /*
  2.  * Copyright (C) 2006 Apple Computer, Inc.  All rights reserved.
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  * 1. Redistributions of source code must retain the above copyright
  8.  *    notice, this list of conditions and the following disclaimer.
  9.  * 2. Redistributions in binary form must reproduce the above copyright
  10.  *    notice, this list of conditions and the following disclaimer in the
  11.  *    documentation and/or other materials provided with the distribution.
  12.  *
  13.  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
  14.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16.  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
  17.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  20.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  21.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  22.  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  23.  */
  24.  
  25. body {
  26.     margin: 0
  27. }
  28.  
  29. table {
  30.     width: 100%;
  31.     border-spacing: 0;
  32.     white-space: pre-wrap !important;
  33.     margin: 0;
  34.     word-break: break-word;
  35.     font-size: initial;
  36.     font-family: monospace;
  37. }
  38.  
  39. td {
  40.     padding: 0 !important;
  41.     vertical-align: baseline
  42. }
  43.  
  44. .line-gutter-backdrop, .line-number {
  45.     /* Keep this in sync with inspector.css (.webkit-line-gutter-backdrop) */
  46.     box-sizing: border-box;
  47.     padding: 0 4px !important;
  48.     width: 31px;
  49.     background-color: rgb(240, 240, 240);
  50.     border-right: 1px solid rgb(187, 187, 187) !important;
  51.     -webkit-user-select: none;
  52. }
  53.  
  54. .line-gutter-backdrop {
  55.     /* Keep this in sync with inspector.css (.webkit-line-gutter-backdrop) */
  56.     position: absolute;
  57.     z-index: -1;
  58.     left: 0;
  59.     top: 0;
  60.     height: 100%
  61. }
  62.  
  63. .line-number {
  64.     text-align: right;
  65.     color: rgb(128, 128, 128);
  66.     word-break: normal;
  67.     white-space: nowrap;
  68.     font-size: 9px;
  69.     font-family: Helvetica;
  70.     -webkit-user-select: none;
  71. }
  72.  
  73. .line-number::before {
  74.     content: attr(value);
  75. }
  76.  
  77. tbody:last-child .line-content:empty:before {
  78.     content: " ";
  79. }
  80.  
  81. .line-content {
  82.     padding: 0 5px !important;
  83. }
  84.  
  85. .highlight {
  86.     background-color: rgb(100%, 42%, 42%);
  87.     border: 2px solid rgb(100%, 31%, 31%);
  88. }
  89.  
  90. .html-tag {
  91.     /* Keep this in sync with inspector.css (.webkit-html-tag) */
  92.     color: rgb(136, 18, 128);
  93. }
  94.  
  95. .html-attribute-name {
  96.     /* Keep this in sync with inspector.css (.webkit-html-attribute-name) */
  97.     color: rgb(153, 69, 0);
  98. }
  99.  
  100. .html-attribute-value {
  101.     /* Keep this in sync with inspector.css (.webkit-html-attribute-value) */
  102.     color: rgb(26, 26, 166);
  103. }
  104.  
  105. .html-external-link, .html-resource-link {
  106.     /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-external-link, .webkit-html-resource-link) */
  107.     color: #00e;
  108. }
  109.  
  110. .html-external-link {
  111.     /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-external-link) */
  112.     text-decoration: none;
  113. }
  114.  
  115. .html-external-link:hover {
  116.     /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-external-link:hover) */
  117.     text-decoration: underline;
  118. }
  119.  
  120. .html-comment {
  121.     /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-comment) */
  122.     color: rgb(35, 110, 37);
  123. }
  124.  
  125. .html-doctype {
  126.     /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-doctype) */
  127.     color: rgb(192, 192, 192);
  128. }
  129.  
  130. .html-end-of-file {
  131.     /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-end-of-file) */
  132.     color: rgb(255, 0, 0);
  133.     font-weight: bold;
  134. }
  135.